SQL Table Value Constructor – SELECT Statement (Create a Table With Value Generated By My Self)


/** Create a Table With Value Generated By My Self **/
SELECT * FROM 
(VALUES 
    /** First Value, Second Value In A Row**/
    ('David', 25),
    ('Brown', 26),
    ('Alex', 22)

) /** First Column Name, Second Column Name**/
as E(FirstName, Age);
#SQL #Table Value Constructor #SELECT Statement






你可能感興趣的文章

理解與解決 N + 1 problem

理解與解決 N + 1 problem

Vegas Pro 20.0 (Build 403) 筆記

Vegas Pro 20.0 (Build 403) 筆記

Survey Web3.js v4

Survey Web3.js v4






留言討論